04 / 04

What is the CAP tradeoff in Redis Cluster, and how does it handle network partitions?

Redis Cluster favors AP (availability + partition tolerance). During a partition, the minority side stops accepting writes after cluster-node-timeout. You can lose data if a master fails before its replica is caught up (async replication). For CP guarantees, use WAIT command to block until N replicas acknowledge.